First contact
Getting the code
Section titled “Getting the code”The code is available on GitHub.
To clone it
$ git clone git@github.com:pasqal-io/quantum-evolution-kernel.git
or
$ git clone https://github.com/pasqal-io/quantum-evolution-kernel
Hatch instructions
Section titled “Hatch instructions”We use hatch
and Python 3.10 for development.
Setting up
Section titled “Setting up”With Python and pip installed, to setup the environment:
$ pip install hatch$ hatch -v shell
This will open a shell with all the dependencies installed.
Running tests
Section titled “Running tests”To run the unit and integration tests
$ hatch run test
To run linters
$ hatch run pre-commit run --all-files